Package-level declarations

Types

Link copied to clipboard
object CoreJs : HttpClientEngineFactory<JsClientEngineConfig>

A JavaScript client engine that uses the fetch API to execute requests.

Link copied to clipboard
internal class CoreJsClientEngine(val config: JsClientEngineConfig) : HttpClientEngineBase
Link copied to clipboard
internal class JsWebSocketSession(val coroutineContext: CoroutineContext, val websocket: WebSocket) : DefaultWebSocketSession
Link copied to clipboard
open class ReactNativeSettings(clearExpiredKeysDuration: Duration? = null) : Settings
Link copied to clipboard
object Tasks

Properties

Link copied to clipboard
private val AsyncStorage: dynamic
Link copied to clipboard
internal val CLIENT_CONFIG: AttributeKey<HttpClientConfig<*>>
Link copied to clipboard

Functions

Link copied to clipboard
internal fun AbortController(): AbortController
Link copied to clipboard
fun <T> array(list: List<T>): Array<T>
Link copied to clipboard
suspend fun Blob.arrayBuffer(): ArrayBuffer
Link copied to clipboard
internal fun Uint8Array.asByteArray(): ByteArray
Link copied to clipboard
private fun Event.asString(): String
Link copied to clipboard
Link copied to clipboard
private suspend fun WebSocket.awaitConnection(): WebSocket
Link copied to clipboard
internal fun <T> buildObject(block: T.() -> Unit): T
Link copied to clipboard
internal fun CoroutineScope.channelFromStream(stream: ReadableStream<Uint8Array>): ByteReadChannel
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun <T> Task<CommonFlow<T>>.collectAsyncFlow(stream: (T) -> Unit, error: (ClientException) -> Unit, scope: CoroutineScope = ContextScope.get(DispatchersProvider.Default)): CommonFlow.Job
Link copied to clipboard
fun <T> CommonFlow<T>.collectFlow(stream: (T) -> Unit, error: (ClientException) -> Unit, scope: CoroutineScope = ContextScope.get(DispatchersProvider.Default)): CommonFlow.Job

Another way to consume common flows for JS ,

Link copied to clipboard
internal suspend fun commonFetch(input: String, init: RequestInit, config: JsClientEngineConfig): Response
Link copied to clipboard
fun configBuilder(appName: String, appVersion: String): Config.Builder
Link copied to clipboard
Link copied to clipboard
fun fileRequest(base64: String, name: String, contentType: String, progress: (percentage: Int) -> Unit): FileRequest
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun fileRequestWithContentType(base64: String, name: String, contentType: String): FileRequest
Link copied to clipboard
Link copied to clipboard
fun fileRequestWithProgress(base64: String, name: String, progress: (percentage: Int) -> Unit): FileRequest
Link copied to clipboard
private suspend fun getBodyBytes(content: OutgoingContent, callContext: CoroutineContext): ByteArray?
Link copied to clipboard

Return Singleton CoreClient

Link copied to clipboard
fun <T> list(array: Array<T>): List<T>
Link copied to clipboard
private fun Headers.mapToKtor(method: HttpMethod, attributes: Attributes): Headers
Link copied to clipboard
internal suspend fun CoroutineScope.readBody(response: Response): ByteReadChannel
Link copied to clipboard
internal suspend fun CoroutineScope.readBodyBrowser(response: Response): ByteReadChannel
Link copied to clipboard
internal suspend fun ReadableStreamDefaultReader<Uint8Array>.readChunk(): Uint8Array?
Link copied to clipboard
Link copied to clipboard
fun setupReactNativeStorage(platform: String? = null): Promise<Int>
Link copied to clipboard
suspend fun Blob.stream(): ReadableStream<Uint8Array>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun taskConfigBuilder(): TaskConfigBuilder
Link copied to clipboard
internal suspend fun HttpRequestData.toRaw(clientConfig: HttpClientConfig<*>, callContext: CoroutineContext): RequestInit